home *** CD-ROM | disk | FTP | other *** search
/ Multicollection 5 Soft 1997 / Multicollection 5 soft 1997 (Win NT 4.0 Work, Serv, OS2).iso / utils.w95 / r-win95 / disk2 / rwinsdk / sample.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-15  |  673 b   |  25 lines

  1. #include <windows.h>
  2. #include <string.h>
  3. #define IDM_FILE                  1000
  4. #define IDM_F_GETKBDMODE               1050
  5. #define IDM_F_SETKBDMODE               1100
  6. #define IDM_F_GETKBDHOTKEY             1150
  7. #define IDM_F_SETKBDHOTKEY             1200
  8. #define IDM_F_GETKBDDLLSSTATUS         1250
  9. #define IDM_F_ABOUT                    1350
  10.  
  11. #define IDS_ERR_REGISTER_CLASS   1
  12. #define IDS_ERR_CREATE_WINDOW    2
  13.  
  14. char szString[128];
  15.  
  16. char szAppName[20];
  17. HWND hInst;          
  18. HWND hWndMain;       
  19.  
  20.  
  21. LONG FAR PASCAL WndProc(HWND, WORD, WORD, LONG);
  22. int nCwRegisterClasses(void);
  23. void CwUnRegisterClasses(void);
  24. BOOL IsRWINDrv (HANDLE hInstance);
  25.